.column-upload {
  float: left;
  /* width: 33.33%; */
  padding: 5px;
}

/* Clear floats after image containers */
.row-upload::after {
  content: "";
  clear: both;
  display: table;
}

.box-border {
  border: solid 1px;
  border-radius: 5px;
  padding: 5px;
  border-color: #ccc;
}

input[type="checkbox"]{
  width: 20px;
  height: 20px;
}

input[type="radio"]{
  width: 20px;
  height: 20px;
}

.tooltip-arrow,
.tooltip-inner {background-color: #0d599b;}

#div_logo *
{
  color: green !important;
}

#microbe_detail_title1 *
{
  color: red !important;
}

#microbe_detail_title2 *
{
  color: green !important;
}

#microbe_detail_title4 *
{
  color: green !important;
}
@media print
{
  #page-wrapper
  {    
    font-family: 'Times New Roman';
    font-size: 12px !important;
    -webkit-print-color-adjust: exact !important;
    margin: 0 0 0 0px !important;    
  }

  .table td.bg-primary
  {
    color: white !important;
    background-color: #337ab7 !important;
  }

  .table td.bg-info
  {
    background-color: #d9edf7 !important;
  }

  #microbe_detail_title2 *
  {
    font-size: 17px !important;
  }

  #microbe_detail_title3 *
  {
    font-size: 16px !important;
  }

  #microbe_detail_title4 *
  {
    font-size: 30px !important;
  }

  a[href]:after{
    content:"";
  }
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
  width: 250px;    
  top: 0;
  left: -250px;
  /* height: 100vh; */
  z-index: 1001;
  color: #fff;
}

#sidebar-header
{
  display: none;
}

@media only screen and (max-device-width: 767px) {
  #sidebar {
    position: fixed;
    transition: all 0.3s;
  }

  #sidebar.active
  {    
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }

  #sidebar-header
  {
    display: block;
  }
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #337ab7;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}
